added SSCLI 1.0
[windows-sources.git] / shared source / wpf / src / host / dll / detours.hxx
bloba177e6ad9488a089d355e643ae3a68a2d90d062b
1 //+-----------------------------------------------------------------------
2 //
3 // Copyright (c) Microsoft Corporation. All rights reserved.
4 //
5 // Description:
6 // Various Win32 function detours.
7 // See also CCookieShim.
8 // The Detours library can be found on http://toolbox. It has a nice help file with it.
9 //
10 // History:
11 // 2009/04/09 [....] Created
13 //------------------------------------------------------------------------
15 #pragma once
17 class Detours
19 Detours();
20 public:
21 static HRESULT Init();
22 static void Uninit();
24 private:
25 static HWND (WINAPI *s_pfGetActiveWindow)();
26 static HWND WINAPI GetActiveWindowDetour();